home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 21 / AACD 21.iso / AACD / Utilities / Ghostscript / src / gsjmorec.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-01  |  1.8 KB  |  55 lines

  1. /* Copyright (C) 1994, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of AFPL Ghostscript.
  4.   
  5.   AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author or
  6.   distributor accepts any responsibility for the consequences of using it, or
  7.   for whether it serves any particular purpose or works at all, unless he or
  8.   she says so in writing.  Refer to the Aladdin Free Public License (the
  9.   "License") for full details.
  10.   
  11.   Every copy of AFPL Ghostscript must include a copy of the License, normally
  12.   in a plain ASCII text file named PUBLIC.  The License grants you the right
  13.   to copy, modify and redistribute AFPL Ghostscript, but only under certain
  14.   conditions described in the License.  Among other things, the License
  15.   requires that the copyright notice and this notice be preserved on all
  16.   copies.
  17. */
  18.  
  19. /*$Id: gsjmorec.h,v 1.2.2.1 2000/10/18 04:31:17 alexcher Exp $ */
  20. /* "Wrapper" for Independent JPEG Group code jmorecfg.h */
  21.  
  22. #ifndef gsjmorec_INCLUDED
  23. #  define gsjmorec_INCLUDED
  24.  
  25. #include "jmcorig.h"
  26.  
  27. /* Remove unwanted / unneeded features. */
  28. #undef DCT_IFAST_SUPPORTED
  29. #if FPU_TYPE <= 0
  30. #  undef DCT_FLOAT_SUPPORTED
  31. #endif
  32. #undef C_MULTISCAN_FILES_SUPPORTED
  33. #undef C_PROGRESSIVE_SUPPORTED
  34. #undef ENTROPY_OPT_SUPPORTED
  35. #undef INPUT_SMOOTHING_SUPPORTED
  36.  
  37.  
  38. /* Progressive JPEG is required for PDF 1.3.
  39.  * Don't undefine D_MULTISCAN_FILES_SUPPORTED and D_PROGRESSIVE_SUPPORTED
  40.  */
  41.  
  42. #undef BLOCK_SMOOTHING_SUPPORTED
  43. #undef IDCT_SCALING_SUPPORTED
  44. #undef UPSAMPLE_SCALING_SUPPORTED
  45. #undef UPSAMPLE_MERGING_SUPPORTED
  46. #undef QUANT_1PASS_SUPPORTED
  47. #undef QUANT_2PASS_SUPPORTED
  48. /*
  49.  * Read "JPEG" files with up to 64 blocks/MCU for Adobe compatibility.
  50.  * Note that this #define will have no effect in pre-v6 IJG versions.
  51.  */
  52. #define D_MAX_BLOCKS_IN_MCU   64
  53.  
  54. #endif /* gsjmorec_INCLUDED */
  55.